home *** CD-ROM | disk | FTP | other *** search
/ InterCD 2001 April / april_2001.iso / intercd / root / Browsers / ^Enfish_Onespace / setup.exe / setup.inf < prev   
Encoding:
Windows Setup INFormation  |  2000-10-11  |  25.4 KB  |  1,338 lines

  1. [version]
  2. signature="$CHICAGO$"
  3.  
  4. [DefaultInstall]
  5. ; we are leave this blank so that a right mouse click
  6. ; install does do anything
  7.  
  8. [ProductInstall]
  9. CopyFiles=System.copy.files,Product.copy.files,HTML.copy.files
  10. AddReg=Product.Add.Reg
  11. UpdateInis=Product.links
  12.  
  13. [SystemInstall]
  14. CopyFiles=System.copy.files
  15.  
  16. [NTInstall]
  17. AddReg=NT.Add.Reg
  18.  
  19. [95or98Install]
  20. AddReg=95or98.Add.Reg
  21.  
  22. ;;;;;;;;;;
  23. ; Uninstall
  24.  
  25. [DefaultUninstall]
  26. DelFiles=HTML.del.files,Product.del.files
  27. DelReg=Product.Del.Reg
  28. UpdateInis=del.links
  29.  
  30. [MyProgramUninstall]
  31. DelFiles=HTML.del.files,Product.del.files
  32. DelReg=Product.Del.Reg
  33. UpdateInis=del.links
  34.  
  35. [Product.Add.Reg]
  36. ;
  37. ; Product Registry entries here
  38. ; For compatibility you must specify 0,1,2,3 for the fourth
  39. ; parameter if you want to specify a value
  40. ;
  41.  
  42. HKCU,SOFTWARE\%COMPANY_NAME%\%PRODUCT_NAME%,"Path",0,%65600%
  43.  
  44. [NT.Add.Reg]
  45. ;
  46. ; for add/remove programs applet
  47. ;
  48.  
  49. HKCU,SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\%PRODUCT_NAME%,"DisplayName",0,%PRODUCT_DESC%
  50. ;HKCU,SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\%PRODUCT_NAME%,"UninstallString",0,"Rundll32.exe setupapi.dll,InstallHinfSection DefaultUninstall 132 "%65600%"\setup.inf"
  51. HKCU,SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\%PRODUCT_NAME%,"UninstallString",0,""%65600%"\setup.exe /uninstall"
  52.  
  53. [95or98.Add.Reg]
  54. ;
  55. ; for add/remove programs applet
  56. ;
  57.  
  58. HKLM,SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\%PRODUCT_NAME%,"DisplayName",0,%PRODUCT_DESC%
  59. ;HKLM,SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\%PRODUCT_NAME%,"UninstallString",0,"Rundll32.exe setupapi.dll,InstallHinfSection DefaultUninstall 132 "%65600%"\setup.inf"
  60. HKLM,SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\%PRODUCT_NAME%,"UninstallString",0,""%65600%"\setup.exe /uninstall"
  61.  
  62. ;;;;;;;;;
  63. ;
  64. ; registry delete works by pruning the tree,
  65. ; so if you have interdependent values, put thems in subkeys and
  66. ; not in values of the main key since when you prune all the values are lost
  67. ;
  68.  
  69. [Product.Del.Reg]
  70. ;
  71. ;Registry entries here
  72. ;
  73.  
  74. HKCU,SOFTWARE\%COMPANY_NAME%\%PRODUCT_NAME%,"Path",,
  75. HKCU,SOFTWARE\%COMPANY_NAME%\%PRODUCT_NAME%,,,
  76. HKLM,SOFTWARE\%COMPANY_NAME%\%PRODUCT_NAME%,"Path",,
  77. HKLM,SOFTWARE\%COMPANY_NAME%\%PRODUCT_NAME%,,,
  78.  
  79. ;
  80. ; for add/remove programs applet
  81. ;
  82.  
  83. HKCU,SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\%PRODUCT_NAME%,"DisplayName",,
  84. HKCU,SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\%PRODUCT_NAME%,"UninstallString",,
  85. HKCU,SoftWare\Microsoft\Windows\CurrentVersion\Uninstall\%PRODUCT_NAME%,,,
  86. HKLM,SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\%PRODUCT_NAME%,"DisplayName",,
  87. HKLM,SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\%PRODUCT_NAME%,"UninstallString",,
  88. HKLM,SoftWare\Microsoft\Windows\CurrentVersion\Uninstall\%PRODUCT_NAME%,,,
  89.  
  90. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  91. ;
  92. ; Disk lay out information, used by the CopyFiles lists
  93. ;
  94. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  95. ;
  96. ; This is the source disk identifiers the number at the
  97. ; beginning maps to the SourceDisksFiles first parameter
  98.  
  99. [SourceDisksNames]
  100. 1="Cabinet File",setup.cab,1
  101.  
  102. ;;;;;;;;;;;;;;;;;;
  103. ;
  104. ; SourceDisksFiles -
  105. ; this must have ALL file names in any copyfiles section
  106. ; so that the default copyfile error callback dialog (browse,skip)
  107. ; can use the SourceDisksNames strings above to help find the file
  108. ; -- this infomation can also be put in a layout.inf
  109. ;
  110. ; filename_on_source=diskid,subdir,size,checksum,spare,spare
  111.  
  112. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  113. ;
  114. ; Targetdirectories predefined for [DestinationDirs] section
  115. ;   parameter number one  
  116. ;     00=null, use only the second parameter for a path
  117. ;     11=windows system directory
  118. ;     ...
  119. ;
  120. [DestinationDirs]
  121. ;
  122. ; a default if a particular copyfiles section
  123. ;
  124. ; DefaultDestDir=LDID[,subdir]  ; not used in this sample
  125. ; 01 is the source directory
  126. ;
  127. ; Run time defined strings, these are set with 
  128. ; SetupSetDirectoryId once this inf is openned
  129. ;
  130. ; 65600 is a random choice for a dirid
  131. ; note this must be set by a calling
  132. ; application and must be > 65536
  133.  
  134. Product.del.files=65600
  135. HTML.del.files=65600,Html
  136. System.copy.files=11
  137. Product.copy.files=65600
  138. HTML.copy.files=65600,Html
  139.  
  140. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  141. ;
  142. ; These are the CopyFiles lists, here is where the files
  143. ; for each component are defined
  144. ; Note the last param (parm 4) is the CopyFlag for that
  145. ; File, for example 8 means copy on  restart--see the doc for more
  146. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  147.  
  148. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  149. ;
  150. ; INI sections, used to create and delete icons 
  151. ;  other uses are possible
  152. ;
  153. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  154. [Product.links]
  155. ;create folders
  156. ;setup.ini, progman.groups,,"ProductGroup=%PRODUCT_NAME%"     
  157. ;create links
  158. ;second param must match above and the linked to file must really exist
  159. ;setup.ini, ProductGroup,,"%PRODUCT_DESC%,%65600%\OneSpace.exe,,,"
  160. ;setup.ini, ProductGroup,,"%UNINSTALL_DESC%,%65600%\setup.exe /uninstall,,,"
  161. ;setup.ini, ProductGroup,,"%README_DESC%,%65600%\readme.txt,,," 
  162. ;Add desktop icons here
  163. ;setup.ini, progman.groups,,"Desktop=""..\..\Desktop"""
  164. ;setup.ini, Desktop,,"%DT_DESC%,%65600%\OneSpace.exe,,,"
  165.  
  166. [del.links]
  167. ;remove folders
  168. ;setup.ini, progman.groups,,"ProductGroup=%PRODUCT_NAME%"     
  169. ;remove links
  170. ;second param must match above and last param is EXACT description name
  171. ;setup.ini, ProductGroup,,"%PRODUCT_DESC%"
  172. ;setup.ini, ProductGroup,,"%UNINSTALL_DESC%"
  173. ;setup.ini, ProductGroup,,"%README_DESC%" 
  174. ;remove desktop icons here
  175. ;setup.ini, progman.groups,,"Desktop=""..\..\Desktop"""
  176. ;setup.ini, Desktop,,"%DT_DESC%"
  177.  
  178. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  179. ;
  180. ; Strings replace variable in percents above
  181. ;
  182. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  183. [Strings]
  184. PRODUCT_DESC="Enfish Onespace"
  185. DT_DESC="Enfish Onespace"
  186. README_DESC="Read Me"
  187. UNINSTALL_DESC="Uninstall"
  188. COMPANY_NAME="Enfish Technology"
  189. PRODUCT_NAME="Onespace"
  190.  
  191. [RegisterFiles]
  192. NumFilesRegister=39
  193.  
  194. [FileVersions]
  195. Etiutil.dll=2.20.1579.0
  196. EtiEUtil.dll=2.20.1579.0
  197. EtiLProp.dll=2.20.1579.0
  198. EtiProp.dll=2.20.1579.0
  199. EtiRProp.dll=2.20.1579.0
  200. PropMSvr.exe=2.20.1579.0
  201. EtiPBrkr.dll=2.20.1579.0
  202. SPropCli.dll=2.20.1579.0
  203. EtiPBase.dll=2.20.1579.0
  204. EtiConnM.dll=2.20.1579.0
  205. DESS.DLL=6.0.0.1754
  206. DEWP.DLL=6.0.0.1754
  207. EtiInso.dll=2.20.1579.0
  208. EtiFile.dll=2.20.1579.0
  209. EtiAOL.dll=2.20.1579.0
  210. EtiApp.dll=2.20.1579.0
  211. EtiCtrl.dll=2.20.1579.0
  212. EtiInet.dll=2.20.1579.0
  213. EtiInit.dll=2.20.1579.0
  214. EtiPrInf.dll=2.20.1579.0
  215. EtiLQry.dll=2.20.1579.0
  216. EtiMapiU.dll=2.20.1579.0
  217. EtiMapi2.dll=2.20.1579.0
  218. EtiNSCP.dll=2.20.1579.0
  219. EtiNav.dll=2.20.1579.0
  220. EtiOE4.dll=2.20.1579.0
  221. EtiOE5.dll=2.20.1579.0
  222. EtiOLook.dll=2.20.1579.0
  223. EtiOMgr.dll=2.20.1579.0
  224. EtiPMApi.dll=2.20.1579.0
  225. DexEng2.exe=2.20.1579.0
  226. DataImp.exe=2.20.1579.0
  227. EtiSched.dll=2.20.1579.0
  228. EtiSchd2.exe=2.20.1579.0
  229. EtiTray.exe=2.20.1579.0
  230. EtiSync.dll=2.20.1579.0
  231. EtiBrain.dll=2.20.1579.0
  232. EtiRSL.dll=2.20.1579.0
  233. EtiStart.exe=2.20.1579.0
  234. EtiUpWiz.exe=2.20.1579.0
  235. EtiWeb.dll=2.20.1579.0
  236. EtiWab.dll=2.20.1579.0
  237. EtiLYU.dll=2.20.1579.0
  238. EtiGCtrl.dll=2.20.1579.0
  239. EtiDora.dll=2.20.1579.0
  240. PropQ.dll=2.20.1579.0
  241. DexHook.dll=2.20.1579.0
  242. RegSvr32.exe=5.0.1586.1
  243. SCCCA.DLL=6.0.0.1754
  244. SCCCH.DLL=6.0.0.1754
  245. SCCDA.DLL=6.0.0.1754
  246. SCCDU.DLL=6.0.0.1754
  247. SCCFA.DLL=6.0.0.1754
  248. SCCFI.DLL=6.0.0.1754
  249. SCCLO.DLL=6.0.0.1754
  250. SCCOLE.DLL=6.0.0.1754
  251. SCCTA.DLL=6.0.0.1754
  252. SCCUT.DLL=6.0.0.1754
  253. SCCVW.DLL=6.0.0.1754
  254. DETREE.DLL=6.0.0.1754
  255. DEBMP.DLL=6.0.0.1754
  256. DEMET.DLL=6.0.0.1754
  257. Onespace.exe=2.20.1579.0
  258. VSAMI.DLL=6.0.0.1754
  259. VSVCRD.DLL=6.0.0.1754
  260. VSHTML.DLL=6.0.0.1754
  261. VSMSW.DLL=6.0.0.1754
  262. VSPP7.DLL=6.0.0.1754
  263. VSPP97.DLL=6.0.0.1754
  264. VSRTF.DLL=6.0.0.1754
  265. VSTEXT.DLL=6.0.0.1754
  266. VSW6.DLL=6.0.0.1754
  267. VSW97.DLL=6.0.0.1754
  268. VSWP6.DLL=6.0.0.1754
  269. VSWPW.DLL=6.0.0.1754
  270. VSXL5.DLL=6.0.0.1754
  271. VSBMP.DLL=6.0.0.1754
  272. EtiWrld.dll=2.20.1579.0
  273. EtiRName.exe=2.20.1579.0
  274. setup.exe=2.20.1579.0
  275. atl.dll=3.0.8449.0
  276. Msvcp60.dll=6.0.8168.0
  277. Msvcrt.dll=6.0.8397.0
  278. Msvcirt.dll=6.0.8168.0
  279.  
  280. [SourceDisksFiles]
  281. Etiutil.dll=1,,,,,
  282. EtiEUtil.dll=1,,,,,
  283. EtiLProp.dll=1,,,,,
  284. EtiProp.dll=1,,,,,
  285. EtiRProp.dll=1,,,,,
  286. PropMSvr.exe=1,,,,,
  287. EtiPBrkr.dll=1,,,,,
  288. SPropCli.dll=1,,,,,
  289. RScript.ini=1,,,,,
  290. EtiPBase.dll=1,,,,,
  291. EtiConnM.dll=1,,,,,
  292. ctreestd.dll=1,,,,,
  293. DESS.DLL=1,,,,,
  294. DEWP.DLL=1,,,,,
  295. EtiInso.dll=1,,,,,
  296. EtiFile.dll=1,,,,,
  297. EtiAOL.dll=1,,,,,
  298. EtiApp.dll=1,,,,,
  299. EtiCtrl.dll=1,,,,,
  300. EtiInet.dll=1,,,,,
  301. EtiInit.dll=1,,,,,
  302. EtiPrInf.dll=1,,,,,
  303. EtiLQry.dll=1,,,,,
  304. EtiMapiU.dll=1,,,,,
  305. EtiMapi2.dll=1,,,,,
  306. EtiNSCP.dll=1,,,,,
  307. EtiNav.dll=1,,,,,
  308. EtiOE4.dll=1,,,,,
  309. EtiOE5.dll=1,,,,,
  310. EtiOLook.dll=1,,,,,
  311. EtiOMgr.dll=1,,,,,
  312. EtiPMApi.dll=1,,,,,
  313. DexEng2.exe=1,,,,,
  314. DataImp.exe=1,,,,,
  315. EtiSched.dll=1,,,,,
  316. EtiSchd2.exe=1,,,,,
  317. EtiTray.exe=1,,,,,
  318. EtiSync.dll=1,,,,,
  319. EtiBrain.dll=1,,,,,
  320. EtiRSL.dll=1,,,,,
  321. EtiStart.exe=1,,,,,
  322. EtiUpWiz.exe=1,,,,,
  323. EtiWeb.dll=1,,,,,
  324. EtiWab.dll=1,,,,,
  325. EtiLYU.dll=1,,,,,
  326. EtiGCtrl.dll=1,,,,,
  327. EtiDora.dll=1,,,,,
  328. PropQ.dll=1,,,,,
  329. DexHook.dll=1,,,,,
  330. PI_W32.DLL=1,,,,,
  331. RegSvr32.exe=1,,,,,
  332. SCCCA.DLL=1,,,,,
  333. SCCCH.DLL=1,,,,,
  334. SCCDA.DLL=1,,,,,
  335. SCCDU.DLL=1,,,,,
  336. SCCFA.DLL=1,,,,,
  337. SCCFI.DLL=1,,,,,
  338. SCCLO.DLL=1,,,,,
  339. SCCOLE.DLL=1,,,,,
  340. SCCTA.DLL=1,,,,,
  341. SCCUT.DLL=1,,,,,
  342. SCCVW.DLL=1,,,,,
  343. DETREE.DLL=1,,,,,
  344. DEBMP.DLL=1,,,,,
  345. DEMET.DLL=1,,,,,
  346. Onespace.exe=1,,,,,
  347. VSAMI.DLL=1,,,,,
  348. VSVCRD.DLL=1,,,,,
  349. VSHTML.DLL=1,,,,,
  350. VSMSW.DLL=1,,,,,
  351. VSPP7.DLL=1,,,,,
  352. VSPP97.DLL=1,,,,,
  353. VSRTF.DLL=1,,,,,
  354. VSTEXT.DLL=1,,,,,
  355. VSW6.DLL=1,,,,,
  356. VSW97.DLL=1,,,,,
  357. VSWP6.DLL=1,,,,,
  358. VSWPW.DLL=1,,,,,
  359. VSXL5.DLL=1,,,,,
  360. VSBMP.DLL=1,,,,,
  361. EtiWrld.dll=1,,,,,
  362. EtiRName.exe=1,,,,,
  363. EtiFSMon.vxd=1,,,,,
  364. loaddb.ini=1,,,,,
  365. EtiCfg.txt=1,,,,,
  366. AMEX.csv=1,,,,,
  367. amex.ini=1,,,,,
  368. NASDAQ.csv=1,,,,,
  369. nasdaq.ini=1,,,,,
  370. NYSE.csv=1,,,,,
  371. NYSE.ini=1,,,,,
  372. States.ini=1,,,,,
  373. states.csv=1,,,,,
  374. FileTyps.csv=1,,,,,
  375. FileTyps.ini=1,,,,,
  376. Readme.txt=1,,,,,
  377. onespace.chm=1,,,,,
  378. register.bat=1,,,,,
  379. setup.exe=1,,,,,
  380. setup.inf=1,,,,,
  381. OSFilter.ini=1,,,,,
  382. atl.dll=1,,,,,
  383. Msvcp60.dll=1,,,,,
  384. Msvcrt.dll=1,,,,,
  385. Msvcirt.dll=1,,,,,
  386. ABCNews.gif=1,,,,,
  387. actnBack.gif=1,,,,,
  388. actnBtnL.gif=1,,,,,
  389. actnBtnM.gif=1,,,,,
  390. actnBtnR.gif=1,,,,,
  391. aplyBtnD.gif=1,,,,,
  392. aplyBtnE.gif=1,,,,,
  393. aplyBtnH.gif=1,,,,,
  394. blank.gif=1,,,,,
  395. bnBooks.gif=1,,,,,
  396. bncom.gif=1,,,,,
  397. bnMusic.gif=1,,,,,
  398. bnShop.gif=1,,,,,
  399. bodyE.gif=1,,,,,
  400. bodyS.gif=1,,,,,
  401. books.gif=1,,,,,
  402. BuyNow.htm=1,,,,,
  403. CBSmarkt.gif=1,,,,,
  404. CBSSportsLine.gif=1,,,,,
  405. cds.gif=1,,,,,
  406. children.gif=1,,,,,
  407. chkBox.gif=1,,,,,
  408. chkBoxG.gif=1,,,,,
  409. chkBoxX.gif=1,,,,,
  410. close2D.gif=1,,,,,
  411. close2E.gif=1,,,,,
  412. clothing.gif=1,,,,,
  413. cloudy.gif=1,,,,,
  414. cnbc.gif=1,,,,,
  415. cnn.gif=1,,,,,
  416. config.gif=1,,,,,
  417. contctBk.gif=1,,,,,
  418. conTopB1.GIF=1,,,,,
  419. conTopB2.GIF=1,,,,,
  420. conTopB3.gif=1,,,,,
  421. conTopE.GIF=1,,,,,
  422. conTopM.GIF=1,,,,,
  423. Control.css=1,,,,,
  424. dayview.htm=1,,,,,
  425. DDarroD.gif=1,,,,,
  426. DDarroE.gif=1,,,,,
  427. decorat.gif=1,,,,,
  428. defBtnDE.gif=1,,,,,
  429. defBtnDL.gif=1,,,,,
  430. defBtnDM.gif=1,,,,,
  431. defBtnDR.gif=1,,,,,
  432. defBtnE.gif=1,,,,,
  433. defBtnL.gif=1,,,,,
  434. defBtnM.gif=1,,,,,
  435. defBtnR.gif=1,,,,,
  436. diaBtn2.gif=1,,,,,
  437. diaBtn2D.gif=1,,,,,
  438. diaBtnDE.gif=1,,,,,
  439. diaBtnDL.gif=1,,,,,
  440. diaBtnDM.gif=1,,,,,
  441. diaBtnDR.gif=1,,,,,
  442. diaBtnE.gif=1,,,,,
  443. diaBtnL.gif=1,,,,,
  444. diaBtnM.gif=1,,,,,
  445. diaBtnR.gif=1,,,,,
  446. diaDown.gif=1,,,,,
  447. diaLine.gif=1,,,,,
  448. diaTab1.gif=1,,,,,
  449. diaTab2.gif=1,,,,,
  450. diaTab3.GIF=1,,,,,
  451. diaUp.gif=1,,,,,
  452. diaVline.gif=1,,,,,
  453. div_item.js=1,,,,,
  454. DownArrow.gif=1,,,,,
  455. DownBtn.gif=1,,,,,
  456. DownBtn2.gif=1,,,,,
  457. drop_indicator.gif=1,,,,,
  458. drop_indicator2.gif=1,,,,,
  459. dropAroD.gif=1,,,,,
  460. dropAroE.gif=1,,,,,
  461. enfish_72.jpg=1,,,,,
  462. espn.gif=1,,,,,
  463. EtiResults.htm=1,,,,,
  464. EtiRSLBody.htm=1,,,,,
  465. EtiRSLUI.htm=1,,,,,
  466. EtiViewer.htm=1,,,,,
  467. EtiViewerMgrUI.htm=1,,,,,
  468. event.gif=1,,,,,
  469. flowers1.jpg=1,,,,,
  470. flowers2.jpg=1,,,,,
  471. flowers3.jpg=1,,,,,
  472. forbes.gif=1,,,,,
  473. fyndBtnD.gif=1,,,,,
  474. fyndBtnE.gif=1,,,,,
  475. fyndBtnH.gif=1,,,,,
  476. games.gif=1,,,,,
  477. gifCerAd.gif=1,,,,,
  478. giftCert.gif=1,,,,,
  479. go_button.jpg=1,,,,,
  480. goBuyBtD.gif=1,,,,,
  481. goBuyBtE.gif=1,,,,,
  482. goBuyBtH.gif=1,,,,,
  483. gradTop.bmp=1,,,,,
  484. gradTop.GIF=1,,,,,
  485. hollywood.gif=1,,,,,
  486. intelOp2.bmp=1,,,,,
  487. intelOp2.gif=1,,,,,
  488. intelOp3.gif=1,,,,,
  489. intelOpt.bmp=1,,,,,
  490. intelOpt.gif=1,,,,,
  491. intro_back.gif=1,,,,,
  492. intro_diagram.gif=1,,,,,
  493. intro_page.htm=1,,,,,
  494. Investment.htm=1,,,,,
  495. Investment2.htm=1,,,,,
  496. jewelry.gif=1,,,,,
  497. lessBtnD.GIF=1,,,,,
  498. lessBtnE.GIF=1,,,,,
  499. lessBtnH.GIF=1,,,,,
  500. lessBtnX.gif=1,,,,,
  501. ListBox2.js=1,,,,,
  502. meet.gif=1,,,,,
  503. menu1_1.gif=1,,,,,
  504. menu4_4.gif=1,,,,,
  505. menu4ver.gif=1,,,,,
  506. mnthview.htm=1,,,,,
  507. moreBtnD.GIF=1,,,,,
  508. moreBtnE.GIF=1,,,,,
  509. moreBtnH.GIF=1,,,,,
  510. mostCldy.gif=1,,,,,
  511. mrktGuid.gif=1,,,,,
  512. msnbc.gif=1,,,,,
  513. museum.gif=1,,,,,
  514. nextBtnD.gif=1,,,,,
  515. nextBtnE.gif=1,,,,,
  516. nextBtnH.gif=1,,,,,
  517. nextBtnX.gif=1,,,,,
  518. No_Internet.htm=1,,,,,
  519. NoViewer.htm=1,,,,,
  520. partCldy.gif=1,,,,,
  521. prevBtnD.gif=1,,,,,
  522. prevBtnE.gif=1,,,,,
  523. prevBtnH.gif=1,,,,,
  524. prevBtnX.gif=1,,,,,
  525. prints.gif=1,,,,,
  526. proFlowr.gif=1,,,,,
  527. QNBtnD.gif=1,,,,,
  528. QNBtnE.gif=1,,,,,
  529. QNBtnH.gif=1,,,,,
  530. RadBluU.gif=1,,,,,
  531. RadBluUL.gif=1,,,,,
  532. RadBluUR.gif=1,,,,,
  533. RadiiB.gif=1,,,,,
  534. RadiiBL.gif=1,,,,,
  535. RadiiBR.gif=1,,,,,
  536. RadiiL.gif=1,,,,,
  537. RadiiR.gif=1,,,,,
  538. RadiiU.gif=1,,,,,
  539. RadiiUL.gif=1,,,,,
  540. RadiiUR.gif=1,,,,,
  541. radio2Of.gif=1,,,,,
  542. radio2On.gif=1,,,,,
  543. radioOff.gif=1,,,,,
  544. radioOn.gif=1,,,,,
  545. rain.gif=1,,,,,
  546. redherr.gif=1,,,,,
  547. RslActionBar.htm=1,,,,,
  548. RslActionBtn.htm=1,,,,,
  549. RslActionCover.htm=1,,,,,
  550. RslActionLoc.htm=1,,,,,
  551. RslAttachOpts.gif=1,,,,,
  552. RslBannerAd.htm=1,,,,,
  553. RslConstants.htm=1,,,,,
  554. RslDocMissing.htm=1,,,,,
  555. RslExclPicker.htm=1,,,,,
  556. RslFindText.htm=1,,,,,
  557. RslFromHere.htm=1,,,,,
  558. RslListbox.htm=1,,,,,
  559. RslLiveConfig.htm=1,,,,,
  560. RslOnKeyDown.htm=1,,,,,
  561. RslParseQuery.htm=1,,,,,
  562. RslPropsDlg.htm=1,,,,,
  563. RslSaveAsPage2.htm=1,,,,,
  564. RslTextLoc.htm=1,,,,,
  565. RslVwrDetails.htm=1,,,,,
  566. RslVwrTitle.htm=1,,,,,
  567. Schedule.htm=1,,,,,
  568. sculpt.gif=1,,,,,
  569. showers.gif=1,,,,,
  570. snow.gif=1,,,,,
  571. snowShwr.gif=1,,,,,
  572. square.bmp=1,,,,,
  573. standard.gif=1,,,,,
  574. station.gif=1,,,,,
  575. summview.htm=1,,,,,
  576. sunny.gif=1,,,,,
  577. test_listbox_styles.css=1,,,,,
  578. TransDlg.htm=1,,,,,
  579. transparent_pixel.gif=1,,,,,
  580. tut.gif=1,,,,,
  581. tutorial.htm=1,,,,,
  582. UpBtn.gif=1,,,,,
  583. upBtn2.gif=1,,,,,
  584. utility.htm=1,,,,,
  585. viewAroE.GIF=1,,,,,
  586. viewAroX.GIF=1,,,,,
  587. viewD.GIF=1,,,,,
  588. viewE.GIF=1,,,,,
  589. viewH.GIF=1,,,,,
  590. viewHorD.GIF=1,,,,,
  591. viewHorE.GIF=1,,,,,
  592. viewHorH.GIF=1,,,,,
  593. viewSep.gif=1,,,,,
  594. viewVerD.GIF=1,,,,,
  595. viewVerE.GIF=1,,,,,
  596. viewVerH.GIF=1,,,,,
  597. viewZoomD.GIF=1,,,,,
  598. viewZoomE.GIF=1,,,,,
  599. viewZoomH.GIF=1,,,,,
  600. weather.htm=1,,,,,
  601. weatherlogo.gif=1,,,,,
  602. weekview.htm=1,,,,,
  603. whtOvalL.gif=1,,,,,
  604. whtOvalM.gif=1,,,,,
  605. whtOvalR.gif=1,,,,,
  606. Wine.gif=1,,,,,
  607. wizOvalL.gif=1,,,,,
  608. wizOvalM.gif=1,,,,,
  609. wizOvalR.gif=1,,,,,
  610. wthrna.gif=1,,,,,
  611.  
  612. [Product.Copy.Files]
  613. Etiutil.dll
  614. EtiEUtil.dll
  615. EtiLProp.dll
  616. EtiProp.dll
  617. EtiRProp.dll
  618. PropMSvr.exe
  619. EtiPBrkr.dll
  620. SPropCli.dll
  621. RScript.ini
  622. EtiPBase.dll
  623. EtiConnM.dll
  624. ctreestd.dll
  625. DESS.DLL
  626. DEWP.DLL
  627. EtiInso.dll
  628. EtiFile.dll
  629. EtiAOL.dll
  630. EtiApp.dll
  631. EtiCtrl.dll
  632. EtiInet.dll
  633. EtiInit.dll
  634. EtiPrInf.dll
  635. EtiLQry.dll
  636. EtiMapiU.dll
  637. EtiMapi2.dll
  638. EtiNSCP.dll
  639. EtiNav.dll
  640. EtiOE4.dll
  641. EtiOE5.dll
  642. EtiOLook.dll
  643. EtiOMgr.dll
  644. EtiPMApi.dll
  645. DexEng2.exe
  646. DataImp.exe
  647. EtiSched.dll
  648. EtiSchd2.exe
  649. EtiTray.exe
  650. EtiSync.dll
  651. EtiBrain.dll
  652. EtiRSL.dll
  653. EtiStart.exe
  654. EtiUpWiz.exe
  655. EtiWeb.dll
  656. EtiWab.dll
  657. EtiLYU.dll
  658. EtiGCtrl.dll
  659. EtiDora.dll
  660. PropQ.dll
  661. DexHook.dll
  662. PI_W32.DLL
  663. RegSvr32.exe
  664. SCCCA.DLL
  665. SCCCH.DLL
  666. SCCDA.DLL
  667. SCCDU.DLL
  668. SCCFA.DLL
  669. SCCFI.DLL
  670. SCCLO.DLL
  671. SCCOLE.DLL
  672. SCCTA.DLL
  673. SCCUT.DLL
  674. SCCVW.DLL
  675. DETREE.DLL
  676. DEBMP.DLL
  677. DEMET.DLL
  678. Onespace.exe
  679. VSAMI.DLL
  680. VSVCRD.DLL
  681. VSHTML.DLL
  682. VSMSW.DLL
  683. VSPP7.DLL
  684. VSPP97.DLL
  685. VSRTF.DLL
  686. VSTEXT.DLL
  687. VSW6.DLL
  688. VSW97.DLL
  689. VSWP6.DLL
  690. VSWPW.DLL
  691. VSXL5.DLL
  692. VSBMP.DLL
  693. EtiWrld.dll
  694. EtiRName.exe
  695. EtiFSMon.vxd
  696. loaddb.ini
  697. EtiCfg.txt
  698. AMEX.csv
  699. amex.ini
  700. NASDAQ.csv
  701. nasdaq.ini
  702. NYSE.csv
  703. NYSE.ini
  704. States.ini
  705. states.csv
  706. FileTyps.csv
  707. FileTyps.ini
  708. Readme.txt
  709. onespace.chm
  710. register.bat
  711. setup.exe
  712. setup.inf
  713. OSFilter.ini
  714.  
  715. [Product.Del.Files]
  716. Etiutil.dll,,,1
  717. EtiEUtil.dll,,,1
  718. EtiLProp.dll,,,1
  719. EtiProp.dll,,,1
  720. EtiRProp.dll,,,1
  721. PropMSvr.exe,,,1
  722. EtiPBrkr.dll,,,1
  723. SPropCli.dll,,,1
  724. RScript.ini,,,1
  725. EtiPBase.dll,,,1
  726. EtiConnM.dll,,,1
  727. ctreestd.dll,,,1
  728. DESS.DLL,,,1
  729. DEWP.DLL,,,1
  730. EtiInso.dll,,,1
  731. EtiFile.dll,,,1
  732. EtiAOL.dll,,,1
  733. EtiApp.dll,,,1
  734. EtiCtrl.dll,,,1
  735. EtiInet.dll,,,1
  736. EtiInit.dll,,,1
  737. EtiPrInf.dll,,,1
  738. EtiLQry.dll,,,1
  739. EtiMapiU.dll,,,1
  740. EtiMapi2.dll,,,1
  741. EtiNSCP.dll,,,1
  742. EtiNav.dll,,,1
  743. EtiOE4.dll,,,1
  744. EtiOE5.dll,,,1
  745. EtiOLook.dll,,,1
  746. EtiOMgr.dll,,,1
  747. EtiPMApi.dll,,,1
  748. DexEng2.exe,,,1
  749. DataImp.exe,,,1
  750. EtiSched.dll,,,1
  751. EtiSchd2.exe,,,1
  752. EtiTray.exe,,,1
  753. EtiSync.dll,,,1
  754. EtiBrain.dll,,,1
  755. EtiRSL.dll,,,1
  756. EtiStart.exe,,,1
  757. EtiUpWiz.exe,,,1
  758. EtiWeb.dll,,,1
  759. EtiWab.dll,,,1
  760. EtiLYU.dll,,,1
  761. EtiGCtrl.dll,,,1
  762. EtiDora.dll,,,1
  763. PropQ.dll,,,1
  764. DexHook.dll,,,1
  765. PI_W32.DLL,,,1
  766. RegSvr32.exe,,,1
  767. SCCCA.DLL,,,1
  768. SCCCH.DLL,,,1
  769. SCCDA.DLL,,,1
  770. SCCDU.DLL,,,1
  771. SCCFA.DLL,,,1
  772. SCCFI.DLL,,,1
  773. SCCLO.DLL,,,1
  774. SCCOLE.DLL,,,1
  775. SCCTA.DLL,,,1
  776. SCCUT.DLL,,,1
  777. SCCVW.DLL,,,1
  778. DETREE.DLL,,,1
  779. DEBMP.DLL,,,1
  780. DEMET.DLL,,,1
  781. Onespace.exe,,,1
  782. VSAMI.DLL,,,1
  783. VSVCRD.DLL,,,1
  784. VSHTML.DLL,,,1
  785. VSMSW.DLL,,,1
  786. VSPP7.DLL,,,1
  787. VSPP97.DLL,,,1
  788. VSRTF.DLL,,,1
  789. VSTEXT.DLL,,,1
  790. VSW6.DLL,,,1
  791. VSW97.DLL,,,1
  792. VSWP6.DLL,,,1
  793. VSWPW.DLL,,,1
  794. VSXL5.DLL,,,1
  795. VSBMP.DLL,,,1
  796. EtiWrld.dll,,,1
  797. EtiRName.exe,,,1
  798. EtiFSMon.vxd,,,1
  799. loaddb.ini,,,1
  800. EtiCfg.txt,,,1
  801. AMEX.csv,,,1
  802. amex.ini,,,1
  803. NASDAQ.csv,,,1
  804. nasdaq.ini,,,1
  805. NYSE.csv,,,1
  806. NYSE.ini,,,1
  807. States.ini,,,1
  808. states.csv,,,1
  809. FileTyps.csv,,,1
  810. FileTyps.ini,,,1
  811. Readme.txt,,,1
  812. onespace.chm,,,1
  813. register.bat,,,1
  814. setup.exe,,,1
  815. setup.inf,,,1
  816. OSFilter.ini,,,1
  817.  
  818. [Product.Register.Files]
  819. EtiLProp.dll
  820. EtiProp.dll
  821. EtiRProp.dll
  822. PropMSvr.exe
  823. EtiPBrkr.dll
  824. SPropCli.dll
  825. EtiConnM.dll
  826. EtiInso.dll
  827. EtiFile.dll
  828. EtiAOL.dll
  829. EtiCtrl.dll
  830. EtiInet.dll
  831. EtiInit.dll
  832. EtiPrInf.dll
  833. EtiLQry.dll
  834. EtiMapiU.dll
  835. EtiMapi2.dll
  836. EtiNSCP.dll
  837. EtiNav.dll
  838. EtiOE4.dll
  839. EtiOE5.dll
  840. EtiOLook.dll
  841. EtiOMgr.dll
  842. DexEng2.exe
  843. DataImp.exe
  844. EtiSched.dll
  845. EtiSchd2.exe
  846. EtiTray.exe
  847. EtiSync.dll
  848. EtiBrain.dll
  849. EtiRSL.dll
  850. EtiWeb.dll
  851. EtiWab.dll
  852. EtiLYU.dll
  853. EtiGCtrl.dll
  854. EtiDora.dll
  855. Onespace.exe
  856. EtiWrld.dll
  857.  
  858. [Product.Shared.Files]
  859.  
  860. [System.Copy.Files]
  861. atl.dll
  862. Msvcp60.dll
  863. Msvcrt.dll
  864. Msvcirt.dll
  865.  
  866. [System.Del.Files]
  867. atl.dll,,,1
  868. Msvcp60.dll,,,1
  869. Msvcrt.dll,,,1
  870. Msvcirt.dll,,,1
  871.  
  872. [System.Register.Files]
  873. atl.dll
  874.  
  875. [System.Shared.Files]
  876. atl.dll
  877. Msvcp60.dll
  878. Msvcrt.dll
  879. Msvcirt.dll
  880.  
  881. [HTML.Copy.Files]
  882. ABCNews.gif
  883. actnBack.gif
  884. actnBtnL.gif
  885. actnBtnM.gif
  886. actnBtnR.gif
  887. aplyBtnD.gif
  888. aplyBtnE.gif
  889. aplyBtnH.gif
  890. blank.gif
  891. bnBooks.gif
  892. bncom.gif
  893. bnMusic.gif
  894. bnShop.gif
  895. bodyE.gif
  896. bodyS.gif
  897. books.gif
  898. BuyNow.htm
  899. CBSmarkt.gif
  900. CBSSportsLine.gif
  901. cds.gif
  902. children.gif
  903. chkBox.gif
  904. chkBoxG.gif
  905. chkBoxX.gif
  906. close2D.gif
  907. close2E.gif
  908. clothing.gif
  909. cloudy.gif
  910. cnbc.gif
  911. cnn.gif
  912. config.gif
  913. contctBk.gif
  914. conTopB1.GIF
  915. conTopB2.GIF
  916. conTopB3.gif
  917. conTopE.GIF
  918. conTopM.GIF
  919. Control.css
  920. dayview.htm
  921. DDarroD.gif
  922. DDarroE.gif
  923. decorat.gif
  924. defBtnDE.gif
  925. defBtnDL.gif
  926. defBtnDM.gif
  927. defBtnDR.gif
  928. defBtnE.gif
  929. defBtnL.gif
  930. defBtnM.gif
  931. defBtnR.gif
  932. diaBtn2.gif
  933. diaBtn2D.gif
  934. diaBtnDE.gif
  935. diaBtnDL.gif
  936. diaBtnDM.gif
  937. diaBtnDR.gif
  938. diaBtnE.gif
  939. diaBtnL.gif
  940. diaBtnM.gif
  941. diaBtnR.gif
  942. diaDown.gif
  943. diaLine.gif
  944. diaTab1.gif
  945. diaTab2.gif
  946. diaTab3.GIF
  947. diaUp.gif
  948. diaVline.gif
  949. div_item.js
  950. DownArrow.gif
  951. DownBtn.gif
  952. DownBtn2.gif
  953. drop_indicator.gif
  954. drop_indicator2.gif
  955. dropAroD.gif
  956. dropAroE.gif
  957. enfish_72.jpg
  958. espn.gif
  959. EtiResults.htm
  960. EtiRSLBody.htm
  961. EtiRSLUI.htm
  962. EtiViewer.htm
  963. EtiViewerMgrUI.htm
  964. event.gif
  965. flowers1.jpg
  966. flowers2.jpg
  967. flowers3.jpg
  968. forbes.gif
  969. fyndBtnD.gif
  970. fyndBtnE.gif
  971. fyndBtnH.gif
  972. games.gif
  973. gifCerAd.gif
  974. giftCert.gif
  975. go_button.jpg
  976. goBuyBtD.gif
  977. goBuyBtE.gif
  978. goBuyBtH.gif
  979. gradTop.bmp
  980. gradTop.GIF
  981. hollywood.gif
  982. intelOp2.bmp
  983. intelOp2.gif
  984. intelOp3.gif
  985. intelOpt.bmp
  986. intelOpt.gif
  987. intro_back.gif
  988. intro_diagram.gif
  989. intro_page.htm
  990. Investment.htm
  991. Investment2.htm
  992. jewelry.gif
  993. lessBtnD.GIF
  994. lessBtnE.GIF
  995. lessBtnH.GIF
  996. lessBtnX.gif
  997. ListBox2.js
  998. meet.gif
  999. menu1_1.gif
  1000. menu4_4.gif
  1001. menu4ver.gif
  1002. mnthview.htm
  1003. moreBtnD.GIF
  1004. moreBtnE.GIF
  1005. moreBtnH.GIF
  1006. mostCldy.gif
  1007. mrktGuid.gif
  1008. msnbc.gif
  1009. museum.gif
  1010. nextBtnD.gif
  1011. nextBtnE.gif
  1012. nextBtnH.gif
  1013. nextBtnX.gif
  1014. No_Internet.htm
  1015. NoViewer.htm
  1016. partCldy.gif
  1017. prevBtnD.gif
  1018. prevBtnE.gif
  1019. prevBtnH.gif
  1020. prevBtnX.gif
  1021. prints.gif
  1022. proFlowr.gif
  1023. QNBtnD.gif
  1024. QNBtnE.gif
  1025. QNBtnH.gif
  1026. RadBluU.gif
  1027. RadBluUL.gif
  1028. RadBluUR.gif
  1029. RadiiB.gif
  1030. RadiiBL.gif
  1031. RadiiBR.gif
  1032. RadiiL.gif
  1033. RadiiR.gif
  1034. RadiiU.gif
  1035. RadiiUL.gif
  1036. RadiiUR.gif
  1037. radio2Of.gif
  1038. radio2On.gif
  1039. radioOff.gif
  1040. radioOn.gif
  1041. rain.gif
  1042. redherr.gif
  1043. RslActionBar.htm
  1044. RslActionBtn.htm
  1045. RslActionCover.htm
  1046. RslActionLoc.htm
  1047. RslAttachOpts.gif
  1048. RslBannerAd.htm
  1049. RslConstants.htm
  1050. RslDocMissing.htm
  1051. RslExclPicker.htm
  1052. RslFindText.htm
  1053. RslFromHere.htm
  1054. RslListbox.htm
  1055. RslLiveConfig.htm
  1056. RslOnKeyDown.htm
  1057. RslParseQuery.htm
  1058. RslPropsDlg.htm
  1059. RslSaveAsPage2.htm
  1060. RslTextLoc.htm
  1061. RslVwrDetails.htm
  1062. RslVwrTitle.htm
  1063. Schedule.htm
  1064. sculpt.gif
  1065. showers.gif
  1066. snow.gif
  1067. snowShwr.gif
  1068. square.bmp
  1069. standard.gif
  1070. station.gif
  1071. summview.htm
  1072. sunny.gif
  1073. test_listbox_styles.css
  1074. TransDlg.htm
  1075. transparent_pixel.gif
  1076. tut.gif
  1077. tutorial.htm
  1078. UpBtn.gif
  1079. upBtn2.gif
  1080. utility.htm
  1081. viewAroE.GIF
  1082. viewAroX.GIF
  1083. viewD.GIF
  1084. viewE.GIF
  1085. viewH.GIF
  1086. viewHorD.GIF
  1087. viewHorE.GIF
  1088. viewHorH.GIF
  1089. viewSep.gif
  1090. viewVerD.GIF
  1091. viewVerE.GIF
  1092. viewVerH.GIF
  1093. viewZoomD.GIF
  1094. viewZoomE.GIF
  1095. viewZoomH.GIF
  1096. weather.htm
  1097. weatherlogo.gif
  1098. weekview.htm
  1099. whtOvalL.gif
  1100. whtOvalM.gif
  1101. whtOvalR.gif
  1102. Wine.gif
  1103. wizOvalL.gif
  1104. wizOvalM.gif
  1105. wizOvalR.gif
  1106. wthrna.gif
  1107.  
  1108. [HTML.Del.Files]
  1109. ABCNews.gif,,,1
  1110. actnBack.gif,,,1
  1111. actnBtnL.gif,,,1
  1112. actnBtnM.gif,,,1
  1113. actnBtnR.gif,,,1
  1114. aplyBtnD.gif,,,1
  1115. aplyBtnE.gif,,,1
  1116. aplyBtnH.gif,,,1
  1117. blank.gif,,,1
  1118. bnBooks.gif,,,1
  1119. bncom.gif,,,1
  1120. bnMusic.gif,,,1
  1121. bnShop.gif,,,1
  1122. bodyE.gif,,,1
  1123. bodyS.gif,,,1
  1124. books.gif,,,1
  1125. BuyNow.htm,,,1
  1126. CBSmarkt.gif,,,1
  1127. CBSSportsLine.gif,,,1
  1128. cds.gif,,,1
  1129. children.gif,,,1
  1130. chkBox.gif,,,1
  1131. chkBoxG.gif,,,1
  1132. chkBoxX.gif,,,1
  1133. close2D.gif,,,1
  1134. close2E.gif,,,1
  1135. clothing.gif,,,1
  1136. cloudy.gif,,,1
  1137. cnbc.gif,,,1
  1138. cnn.gif,,,1
  1139. config.gif,,,1
  1140. contctBk.gif,,,1
  1141. conTopB1.GIF,,,1
  1142. conTopB2.GIF,,,1
  1143. conTopB3.gif,,,1
  1144. conTopE.GIF,,,1
  1145. conTopM.GIF,,,1
  1146. Control.css,,,1
  1147. dayview.htm,,,1
  1148. DDarroD.gif,,,1
  1149. DDarroE.gif,,,1
  1150. decorat.gif,,,1
  1151. defBtnDE.gif,,,1
  1152. defBtnDL.gif,,,1
  1153. defBtnDM.gif,,,1
  1154. defBtnDR.gif,,,1
  1155. defBtnE.gif,,,1
  1156. defBtnL.gif,,,1
  1157. defBtnM.gif,,,1
  1158. defBtnR.gif,,,1
  1159. diaBtn2.gif,,,1
  1160. diaBtn2D.gif,,,1
  1161. diaBtnDE.gif,,,1
  1162. diaBtnDL.gif,,,1
  1163. diaBtnDM.gif,,,1
  1164. diaBtnDR.gif,,,1
  1165. diaBtnE.gif,,,1
  1166. diaBtnL.gif,,,1
  1167. diaBtnM.gif,,,1
  1168. diaBtnR.gif,,,1
  1169. diaDown.gif,,,1
  1170. diaLine.gif,,,1
  1171. diaTab1.gif,,,1
  1172. diaTab2.gif,,,1
  1173. diaTab3.GIF,,,1
  1174. diaUp.gif,,,1
  1175. diaVline.gif,,,1
  1176. div_item.js,,,1
  1177. DownArrow.gif,,,1
  1178. DownBtn.gif,,,1
  1179. DownBtn2.gif,,,1
  1180. drop_indicator.gif,,,1
  1181. drop_indicator2.gif,,,1
  1182. dropAroD.gif,,,1
  1183. dropAroE.gif,,,1
  1184. enfish_72.jpg,,,1
  1185. espn.gif,,,1
  1186. EtiResults.htm,,,1
  1187. EtiRSLBody.htm,,,1
  1188. EtiRSLUI.htm,,,1
  1189. EtiViewer.htm,,,1
  1190. EtiViewerMgrUI.htm,,,1
  1191. event.gif,,,1
  1192. flowers1.jpg,,,1
  1193. flowers2.jpg,,,1
  1194. flowers3.jpg,,,1
  1195. forbes.gif,,,1
  1196. fyndBtnD.gif,,,1
  1197. fyndBtnE.gif,,,1
  1198. fyndBtnH.gif,,,1
  1199. games.gif,,,1
  1200. gifCerAd.gif,,,1
  1201. giftCert.gif,,,1
  1202. go_button.jpg,,,1
  1203. goBuyBtD.gif,,,1
  1204. goBuyBtE.gif,,,1
  1205. goBuyBtH.gif,,,1
  1206. gradTop.bmp,,,1
  1207. gradTop.GIF,,,1
  1208. hollywood.gif,,,1
  1209. intelOp2.bmp,,,1
  1210. intelOp2.gif,,,1
  1211. intelOp3.gif,,,1
  1212. intelOpt.bmp,,,1
  1213. intelOpt.gif,,,1
  1214. intro_back.gif,,,1
  1215. intro_diagram.gif,,,1
  1216. intro_page.htm,,,1
  1217. Investment.htm,,,1
  1218. Investment2.htm,,,1
  1219. jewelry.gif,,,1
  1220. lessBtnD.GIF,,,1
  1221. lessBtnE.GIF,,,1
  1222. lessBtnH.GIF,,,1
  1223. lessBtnX.gif,,,1
  1224. ListBox2.js,,,1
  1225. meet.gif,,,1
  1226. menu1_1.gif,,,1
  1227. menu4_4.gif,,,1
  1228. menu4ver.gif,,,1
  1229. mnthview.htm,,,1
  1230. moreBtnD.GIF,,,1
  1231. moreBtnE.GIF,,,1
  1232. moreBtnH.GIF,,,1
  1233. mostCldy.gif,,,1
  1234. mrktGuid.gif,,,1
  1235. msnbc.gif,,,1
  1236. museum.gif,,,1
  1237. nextBtnD.gif,,,1
  1238. nextBtnE.gif,,,1
  1239. nextBtnH.gif,,,1
  1240. nextBtnX.gif,,,1
  1241. No_Internet.htm,,,1
  1242. NoViewer.htm,,,1
  1243. partCldy.gif,,,1
  1244. prevBtnD.gif,,,1
  1245. prevBtnE.gif,,,1
  1246. prevBtnH.gif,,,1
  1247. prevBtnX.gif,,,1
  1248. prints.gif,,,1
  1249. proFlowr.gif,,,1
  1250. QNBtnD.gif,,,1
  1251. QNBtnE.gif,,,1
  1252. QNBtnH.gif,,,1
  1253. RadBluU.gif,,,1
  1254. RadBluUL.gif,,,1
  1255. RadBluUR.gif,,,1
  1256. RadiiB.gif,,,1
  1257. RadiiBL.gif,,,1
  1258. RadiiBR.gif,,,1
  1259. RadiiL.gif,,,1
  1260. RadiiR.gif,,,1
  1261. RadiiU.gif,,,1
  1262. RadiiUL.gif,,,1
  1263. RadiiUR.gif,,,1
  1264. radio2Of.gif,,,1
  1265. radio2On.gif,,,1
  1266. radioOff.gif,,,1
  1267. radioOn.gif,,,1
  1268. rain.gif,,,1
  1269. redherr.gif,,,1
  1270. RslActionBar.htm,,,1
  1271. RslActionBtn.htm,,,1
  1272. RslActionCover.htm,,,1
  1273. RslActionLoc.htm,,,1
  1274. RslAttachOpts.gif,,,1
  1275. RslBannerAd.htm,,,1
  1276. RslConstants.htm,,,1
  1277. RslDocMissing.htm,,,1
  1278. RslExclPicker.htm,,,1
  1279. RslFindText.htm,,,1
  1280. RslFromHere.htm,,,1
  1281. RslListbox.htm,,,1
  1282. RslLiveConfig.htm,,,1
  1283. RslOnKeyDown.htm,,,1
  1284. RslParseQuery.htm,,,1
  1285. RslPropsDlg.htm,,,1
  1286. RslSaveAsPage2.htm,,,1
  1287. RslTextLoc.htm,,,1
  1288. RslVwrDetails.htm,,,1
  1289. RslVwrTitle.htm,,,1
  1290. Schedule.htm,,,1
  1291. sculpt.gif,,,1
  1292. showers.gif,,,1
  1293. snow.gif,,,1
  1294. snowShwr.gif,,,1
  1295. square.bmp,,,1
  1296. standard.gif,,,1
  1297. station.gif,,,1
  1298. summview.htm,,,1
  1299. sunny.gif,,,1
  1300. test_listbox_styles.css,,,1
  1301. TransDlg.htm,,,1
  1302. transparent_pixel.gif,,,1
  1303. tut.gif,,,1
  1304. tutorial.htm,,,1
  1305. UpBtn.gif,,,1
  1306. upBtn2.gif,,,1
  1307. utility.htm,,,1
  1308. viewAroE.GIF,,,1
  1309. viewAroX.GIF,,,1
  1310. viewD.GIF,,,1
  1311. viewE.GIF,,,1
  1312. viewH.GIF,,,1
  1313. viewHorD.GIF,,,1
  1314. viewHorE.GIF,,,1
  1315. viewHorH.GIF,,,1
  1316. viewSep.gif,,,1
  1317. viewVerD.GIF,,,1
  1318. viewVerE.GIF,,,1
  1319. viewVerH.GIF,,,1
  1320. viewZoomD.GIF,,,1
  1321. viewZoomE.GIF,,,1
  1322. viewZoomH.GIF,,,1
  1323. weather.htm,,,1
  1324. weatherlogo.gif,,,1
  1325. weekview.htm,,,1
  1326. whtOvalL.gif,,,1
  1327. whtOvalM.gif,,,1
  1328. whtOvalR.gif,,,1
  1329. Wine.gif,,,1
  1330. wizOvalL.gif,,,1
  1331. wizOvalM.gif,,,1
  1332. wizOvalR.gif,,,1
  1333. wthrna.gif,,,1
  1334.  
  1335. [HTML.Register.Files]
  1336.  
  1337. [HTML.Shared.Files]